home *** CD-ROM | disk | FTP | other *** search
- unit uSyncLog;
-
- {
- *******************************************************************************
- * Descriptions: Synchronize log window implementation
- * $Source: /cvsroot/fma/fma/uSyncLog.pas,v $
- * $Locker: $
- *
- * Todo:
- *
- * Change Log:
- * $Log: uSyncLog.pas,v $
- * Revision 1.4 2004/06/05 13:32:56 lordlarry
- * Merged with OutlookSync branch
- *
- * Revision 1.3 2004/05/21 10:09:05 z_stoichev
- * Changed logging handle routines.
- *
- *
- }
-
- interface
-
- uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
- Dialogs, uDebug, Placemnt, StdCtrls, Menus;
-
- type
- TfrmSyncLog = class(TfrmDebug)
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- frmSyncLog: TfrmSyncLog;
-
- implementation
-
- {$R *.dfm}
-
- end.
-